home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / ace / limits.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  410b  |  17 lines

  1. #ifndef LIMITS_H
  2. #define LIMITS_H 1
  3.  
  4. /*  maxima & minima    */
  5. #define MaxInt          2147483647
  6. #define MinInt         -2147483648
  7. #define MaxShort        32767
  8. #define MinShort       -32767        /* NOT -32768, due to the way ACE
  9.                     ** classifies integers during 
  10.                     ** compilation. 
  11.                     */
  12. #define MaxReal         9.22337177E+18
  13. #define MinReal        -9.22337177E+18
  14. #define MAXSTRINGLEN    1024&
  15.  
  16. #endif
  17.